home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Mac OS SDK / Dev.CD Jul 99 SDK1.toast / Development Kits / Mac OS / Interfaces&Libraries / Universal / Interfaces / AIncludes / GoggleSprocket.a < prev    next >
Encoding:
Text File  |  1998-08-17  |  1.5 KB  |  66 lines  |  [TEXT/MPS ]

  1. ;
  2. ;    File:        GoggleSprocket.a
  3. ;
  4. ;    Contains:    Games Sprockets: GoggleSprocket interfaces
  5. ;
  6. ;    Version:    Technology:    Goggle Sprocket 1.1
  7. ;                Release:    Universal Interfaces 3.2
  8. ;
  9. ;    Copyright:    © 1996-1998 by Apple Computer, Inc., all rights reserved.
  10. ;
  11. ;    Bugs?:        For bug reports, consult the following page on
  12. ;                the World Wide Web:
  13. ;
  14. ;                    http://developer.apple.com/bugreporter/
  15. ;
  16. ;
  17.     IF &TYPE('__GOGGLESPROCKET__') = 'UNDEFINED' THEN
  18. __GOGGLESPROCKET__ SET 1
  19.  
  20.     IF &TYPE('__MACTYPES__') = 'UNDEFINED' THEN
  21.     include 'MacTypes.a'
  22.     ENDIF
  23.     IF &TYPE('__EVENTS__') = 'UNDEFINED' THEN
  24.     include 'Events.a'
  25.     ENDIF
  26.  
  27.     IF TARGET_CPU_PPC THEN
  28. ;********************************************************************************
  29. ;** constants & data types
  30. ;********************************************************************************
  31. ;
  32.  
  33. ;********************************************************************************
  34. ;** prototypes for application level calls
  35. ;********************************************************************************
  36. ;
  37.  
  38. ;  general 
  39. ;
  40. ; extern OSStatus GSpStartup(UInt32 inReserved)
  41. ;
  42.     IF TARGET_OS_MAC ** TARGET_RT_MAC_CFM THEN
  43.         IMPORT_CFM_FUNCTION GSpStartup
  44.     ENDIF
  45.  
  46. ;
  47. ; extern OSStatus GSpShutdown(UInt32 inReserved)
  48. ;
  49.     IF TARGET_OS_MAC ** TARGET_RT_MAC_CFM THEN
  50.         IMPORT_CFM_FUNCTION GSpShutdown
  51.     ENDIF
  52.  
  53. ;  configuration 
  54. ;
  55. ; extern OSStatus GSpConfigure(GSpEventProcPtr inEventProc, Point *inUpperLeft)
  56. ;
  57.     IF TARGET_OS_MAC ** TARGET_RT_MAC_CFM THEN
  58.         IMPORT_CFM_FUNCTION GSpConfigure
  59.     ENDIF
  60.  
  61.     ENDIF    ; TARGET_CPU_PPC
  62.     ENDIF ; __GOGGLESPROCKET__ 
  63.  
  64.